home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / basic / scrbuild.zip / READ.ME < prev    next >
Text File  |  1991-10-19  |  1KB  |  33 lines

  1. For batch file use:
  2.  
  3.    Use a word processor or any text editor to insert text into batchscr.txt and
  4.    put a type command in your autoexec.bat file as in the following example.
  5.                         @echo off
  6.                         cls
  7.                         path c:\;c:\dos;c:\norton
  8.                         prompt $P$G
  9.                         be sa green blue
  10.                         type batchscr.txt
  11.  
  12.     Note: If you have Norton Utilities on your hard drive, you can use the
  13.             command "be sa foreground color  background color" to add color
  14.             when in dos. Make sure your config.sys has the command
  15.             device = \dos\ansi.sys.
  16.  
  17.  
  18.  
  19. QuickBasic users:
  20.  
  21.     You will notice when you assign different colors to each box that all
  22.     the boxes default to the most recent color assignment. This will not
  23.     happen when you merge the output code into your program.
  24.       Once you merge the code and run the program, each box will have its
  25.     properly assigned color with the background color defaulting to the
  26.     background of the last box of a multibox screen.
  27.       For newcomers to QuickBasic, make a new sub and use the merge command
  28.     to import screen.txt code into the sub,  and add a CLS statement at the
  29.     beginning of the code and a    DO : LOOP WHILE INKEY$ = ""     at the
  30.     end of the code to stop the screen from scrolling by so fast you don't
  31.     see it.
  32.               Have Fun !!
  33.